795684f5fb374f04ceb18753f6bbbb666b50e3f4,src/com/biermacht/brews/recipe/Instruction.java,Instruction,getBrewTimerText,#,127
Before Change
}
else if (this.instructionType.equals(Instruction.TYPE_STEEP)) {
s += "Steep ingredients at " + r.getDisplaySteepTemp() + " " + Units.getTemperatureUnits();
}
else if (this.instructionType.equals(Instruction.TYPE_BOIL)) {
After Change
else if (this.instructionType.equals(Instruction.TYPE_STEEP)) {
s += String.format("Steep ingredients at %2.0f%s.",
r.getDisplaySteepTemp(),
Units.getTemperatureUnits());
}
else if (this.instructionType.equals(Instruction.TYPE_BOIL)) {